home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 398 / 398.xpi / chrome / forecastfox.jar / content / parser / converter-item.js next >
Text File  |  2010-02-04  |  1KB  |  38 lines

  1. /*------------------------------------------------------------------------------
  2.   Copyright (c) 2008 Ensolis, LLC. All Rights Reserved.
  3.   ----------------------------------------------------------------------------*/
  4.  
  5. /******************************************************************************
  6.  * Interface for describing a converter item.  The component that
  7.  * implements this interface should not be called directly, but instead
  8.  * gotten from the parser service interface.
  9.  * 
  10.  * @status    FROZEN
  11.  * @version   1.0
  12.  ******************************************************************************/
  13. function ConverterItem() 
  14. {
  15.   this._properties = {};  
  16. }
  17.  
  18. ConverterItem.prototype = {
  19.   __proto__:  new ItemBase("ConverterItem"),
  20.  
  21.   ////////////////////////////////
  22.   // ffIConverterItem
  23.     
  24.   /**
  25.    * Conversion the converter item applies to.
  26.    */
  27.   get conversion() { return this.getProperty("conversion"); },
  28.   
  29.   /**
  30.    * Units of the converter item.
  31.    */
  32.   get units() { return this.getProperty("units"); },
  33.   
  34.   /**
  35.    * Name of the converter item.
  36.    */
  37.   get name() { return this.getProperty("name"); }
  38. };